home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
autofx
/
eot_gaussianblur.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
664b
|
33 lines
/*
* $VER: EOT_GaussianBlur.ifx 2.6 (24.04.96)
* Copyright © 1992-1996 Nova Design, Inc.
*
* Written by Ola Eric Olsson
*
*
*/
OPTIONS RESULTS
framenum = Word(Arg(1),1)
mainname = Word(Arg(1),2)
swapname = Word(Arg(1),3)
seqnum = Word(Arg(1),4)
framemax = Word(Arg(1),5)
base = 'autofx_gaussian_'
sig = GETCLIP(base||'sigma')
rad = GETCLIP(base||'radius')
blend = GETCLIP(base||'blend')
bl = TRUNC(blend * (framenum / framemax))
/* requestnotify '"sig='||sig||'; rad='||rad||'; blend='||bl||'"' */
Hook GaussianBlur Sigma sig Radius rad Blend bl
/* Hook GaussianBlur Effect constant Type Sigma Width sig Radius rad Blend bl */
EXIT rc